home *** CD-ROM | disk | FTP | other *** search
/ 220 Jogos / 220 jogos.iso / tetris / blocks3d / VFS.CFG < prev    next >
Encoding:
Text File  |  2003-06-12  |  1.9 KB  |  60 lines

  1. ; Some basic mount points
  2. VFS.Mount.~ = $(HOME)$/
  3. VFS.Mount.this = $.$/
  4. VFS.Mount.cdrom = $(CDROM)$/
  5. VFS.Mount.tmp = $(TMP)$/
  6. VFS.Mount.temp = $.$/data$/temp$/
  7.  
  8. ; Configuration repository
  9. VFS.Mount.config = $@data$/config$/
  10.  
  11. VFS.Mount.shader = $@data$/shader$/
  12. ; The TTF font library
  13. VFS.Mount.fonts/ttf   = $@data$/ttf$/, $(TTF_PATH:$.$/)
  14.  
  15. VFS.Mount.lev/flarge   = $@data$/flarge$/
  16. VFS.Mount.lev/isomap   = $@data$/isomap.zip, $@data$/isomap$/
  17. VFS.Mount.lev/mdltest  = $@data$/mdltest$/
  18. VFS.Mount.lev/partsys  = $@data$/partsys$/
  19. VFS.Mount.lev/metaball = $@data$/metaball$/metaball.zip, $@data$/metaball$/
  20. VFS.Mount.lev/terrain  = $@data$/terrain$/
  21.  
  22. ; Mount all libraries under the /lib/ directory
  23. VFS.Mount.lib/std      = $@data$/standard.zip
  24. VFS.Mount.lib/stdtex   = $@data$/stdtex.zip
  25. VFS.Mount.lib/csws     = $@data$/csws.zip
  26.  
  27. ; Mount for AWS
  28. VFS.Mount.aws     = $@data$/awsdef.zip
  29.  
  30. ; Mount for unittest
  31. VFS.Mount.lev/unittest   = $@data$/unittest$/
  32.  
  33. ; The following should not change too often...
  34. ; The idea is that everything that should be changed (such as CDROM variable)
  35. ; is set by some sort of setup (installation) program.
  36. ; Note that variables in VFS.Platform. section will override any
  37. ; variables in VFS.PlatformAlias. section.
  38. VFS.Alias.Unix = VFS.Unix
  39. VFS.Alias.MacOS/X = VFS.Unix
  40. VFS.Alias.Win32 = VFS.CP/M
  41.  
  42. ; strange key names follow:
  43. ; VFS.Unix.. means key '.' in section VFS.Unix.*
  44. ; VFS.Unix... means key '..' in section VFS.Unix.*
  45. VFS.Unix.. = .
  46. VFS.Unix... = ..
  47. VFS.Unix.CDROM = /mnt/cdrom
  48. VFS.Unix.TMP = /tmp
  49. ; This is true at least for systems using XFree86
  50. VFS.Unix.TTF_PATH = /usr/X11R6/lib/X11/fonts/Truetype/
  51.  
  52. VFS.CP/M.. = .
  53. VFS.CP/M... = ..
  54. VFS.CP/M.HOME = $(HOMEDIR:$(HOMEPATH:.))
  55. VFS.CP/M.CDROM = x:
  56. VFS.CP/M.TMP = $(TEMP:$(TMP:$(SYSTEMROOT)$/temp))
  57.  
  58. ; The standard location of TTF fonts is the X:\Windows\fonts directory
  59. VFS.Win32.TTF_PATH = $(SYSTEMROOT)$/fonts$/
  60.